All Questions
Tagged with design-principlesinterfaces
2 questions
3votes
3answers
518views
How to "program to an interface"
I've read these questions: Understanding "programming to an interface" What is the point of an interface? Does it always make sense to "program to an interface" in Java? I don't ...
3votes
3answers
2kviews
Implementing the Interface Segregation Principle
Does this IConvertible interface satisfy the Interface Segregation Principle (ie. the "I" in SOLID)? Here is the definition: public interface IConvertible { TypeCode GetTypeCode(); bool ...